home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Precision Software Appli…tions Silver Collection 1
/
Precision Software Applications Silver Collection Volume One (PSM) (1993).iso
/
demos
/
lot_123.exe
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-05-04
|
1KB
|
75 lines
@echo off
cls
:START
driveok -d C: 720000
if errorlevel 2 goto BADDRIVE
if errorlevel 1 goto BADPARAM
@echo off
echo Do you want to . . .
echo
echo 1. install the demo on hard drive C:\
echo 2. play the demo from diskette
echo
driveok -k 12 Choose 1 or 2 . . .
echo
echo
if errorlevel 2 goto NO
if errorlevel 1 goto BADPARAM
driveok -p C:\123demo
if errorlevel 2 goto NEWDIR
if errorlevel 1 goto BADPARAM
if errorlevel 0 goto COPYFILES
:NEWDIR
MD c:\123demo
goto COPYFILES
:BADPARAM
Echo Bad command in batch file.
goto endxx
:NO
DEMO
:BADDRIVE
echo **************************************************
echo Drive C: is not available
echo OR
echo There is not enough memory free!
echo **************************************************
echo Demo requires at least 720K of hard disk space
echo for complete installation.
echo **************************************************
goto ENDxx
:COPYFILES
echo
echo Installing demo now. Please wait.
copy *.* c:\123demo >nul
echo
echo
c:
cd\123demo
driveok -k yn Do you want to view the demo now (Y/N)? . . .
echo
if errorlevel 2 goto END
if errorlevel 1 goto BADPARAM
DEMO
:END
echo
echo
echo When you want to view the demo type: DEMO
echo
echo
:ENDxx